dataviz\figure\utilities/
axistype.rs

1
2
3
4
5
6
7
/// Represents the type of axis in a graph or chart.
pub enum AxisType {
    /// The horizontal axis, typically representing independent variables or categories.
    AxisX,
    /// The vertical axis, typically representing dependent variables or values.
    AxisY,
}